home *** CD-ROM | disk | FTP | other *** search
- /* tail -- output last part of file(s)
- Copyright (C) 1989, 1990 Free Software Foundation, Inc.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 1, or (at your option)
- any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program; if not, write to the Free Software
- Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
-
- /*
- * MS-DOS port (c) 1990 by Thorsten Ohl, td12@ddagsi3.bitnet
- *
- * To this port, the same copying conditions apply as to the
- * original release.
- *
- * IMPORTANT:
- * This file is not identical to the original GNU release!
- * You should have received this code as patch to the official
- * GNU release.
- *
- * MORE IMPORTANT:
- * This port comes with ABSOLUTELY NO WARRANTY.
- *
- * $Header: e:/gnu/fileutil/RCS/tail.c'v 1.3.0.2 90/06/29 00:47:14 tho Stable $
- */
-
- /* Can display any amount of data, unlike the Unix version, which uses
- a fixed size buffer and therefore can only deliver a limited number
- of lines.
-
- Started by Paul Rubin <phr@ai.mit.edu>
- Finished by David MacKenzie <djm@ai.mit.edu>
-
- Usage: tail [-n [+]#] [-lbcfqv] [+number [+]#] [+lines] [+blocks]
- [+chars] [+follow] [+quiet] [+silent] [+verbose] [file...]
-
- tail [+/-#lbcfqv] [file...]
-
- Options:
- -n, +number [+]# Number of items to tail (default 10).
- If the number starts with a `+', begin printing with
- the #th item from the start of each file, instead of
- from the end.
- -l, +lines Tail by lines (the default).
- -b, +blocks Tail by 512-byte blocks.
- -c, +chars Tail by characters.
- -f, +follow Loop forever trying to read more characters at the
- end of the file, on the assumption that the file
- is growing. Ignored if reading from a pipe.
- Cannot be used if more than one file is given.
- -q, +quiet, +silent Never print filename headers.
- -v, +verbose Always print filename headers.
-
- Reads from standard input if no files are given or when a filename of
- ``-'' is encountered.
- By default, filename headers are printed only more than one file
- is given. */
-
- #include <stdio.h>
- #include <ctype.h>
- #include <sys/types.h>
- #include "getopt.h"
- #include "system.h"
-
- #ifdef STDC_HEADERS
- #include <errno.h>
- #include <stdlib.h>
- #define ISDIGIT(c) (isdigit ((unsigned char) (c)))
- #else
- #define ISDIGIT(c) (isascii (c) && isdigit (c))
- char *malloc ();
- void free ();
-
- extern int errno;
- #endif
-
- #ifndef _POSIX_SOURCE
- long lseek();
- #endif
-
- /* Number of items to tail. */
- #define DEFAULT_NUMBER 10
-
- /* The number of bytes in a block (-b option). */
- #define BLOCKSIZE 512
-
- /* Size of atomic reads. */
- #define BUFSIZE (BLOCKSIZE * 8)
-
- /* Masks for the operation mode. If neither CHARS nor BLOCKS is set,
- tail operates by lines. */
- #define CHARS 1 /* Tail by characters. */
- #define BLOCKS 2 /* Tail by blocks. */
- #define FOREVER 4 /* Read from end of file forever. */
- #define START 8 /* Count from start of file instead of end. */
- #define HEADERS 16 /* Print filename headers. */
-
- /* When to print the filename banners. */
- enum header_mode
- {
- multiple_files, always, never
- };
-
- #ifdef MSDOS
-
- #include <io.h>
- #include <stdlib.h>
- #include <string.h>
-
- extern void main (int, char **);
- extern void write_header (char *);
- extern int tail (char *, int, int, long);
- extern int tail_file (char *, int, long);
- extern int tail_chars (char *, int, int, long);
- extern int tail_lines (char *, int, int, long);
- extern int file_lines (char *, int, long, long);
- extern int pipe_lines (char *, int, long);
- extern int pipe_chars (char *, int, long);
- extern int start_chars (char *, int, long);
- extern int start_lines (char *, int, long);
- extern void dump_remainder (char *, int, int);
- extern void xwrite (int, char *, int);
- extern char *xmalloc (int);
- extern long atou (char *);
- extern char *basename (char *);
- extern void error (int status, int errnum, char *message, ...);
- extern void usage (void);
-
- #else /* not MSDOS */
-
- char *xmalloc ();
- int file_lines ();
- int pipe_chars ();
- int pipe_lines ();
- int start_chars ();
- int start_lines ();
- int tail ();
- int tail_chars ();
- int tail_file ();
- int tail_lines ();
- long atou();
- void dump_remainder ();
- void error ();
- void usage ();
- void write_header ();
- void xwrite ();
-
- extern int errno;
-
- #endif /* not MSDOS */
-
- /* The name this program was run with. */
- char *program_name;
-
- struct option long_options[] =
- {
- {"number", 1, NULL, 'n'},
- {"lines", 0, NULL, 'l'},
- {"blocks", 0, NULL, 'b'},
- {"chars", 0, NULL, 'c'},
- {"follow", 0, NULL, 'f'},
- {"quiet", 0, NULL, 'q'},
- {"silent", 0, NULL, 'q'},
- {"verbose", 0, NULL, 'v'},
- {NULL, 0, NULL, 0}
- };
-
- void
- main (argc, argv)
- int argc;
- char **argv;
- {
- enum header_mode header_mode = multiple_files;
- int errors = 0; /* Exit status. */
- int mode = 0; /* Flags. */
- /* In START mode, the number of items to skip before printing; otherwise,
- the number of items at the end of the file to print. Initially, -1
- means the value has not been set. */
- long number = -1;
- int c; /* Option character. */
- int longind; /* Index in `long_options' of option found. */
-
- program_name = argv[0];
- #ifdef MSDOS
- strlwr (program_name);
- #endif /* not MSDOS */
-
- if (argc > 1
- && ((argv[1][0] == '-' && ISDIGIT (argv[1][1]))
- || (argv[1][0] == '+' && (ISDIGIT (argv[1][1]) || argv[1][1] == 0))))
- {
- /* Old option syntax: a dash or plus, one or more digits, and one or
- more option letters. */
- if (argv[1][0] == '+')
- mode |= START;
- if (ISDIGIT (argv[1][1]))
- {
- for (number = 0, ++argv[1]; ISDIGIT (*argv[1]); ++argv[1])
- number = number * 10 + *argv[1] - '0';
- /* Parse any appended option letters with getopt. */
- if (*argv[1])
- *--argv[1] = '-';
- else
- argv[1] = "-l";
- }
- else
- argv[1] = "-l";
- }
- while ((c = getopt_long (argc, argv, "n:lbcfqv", long_options, &longind))
- != EOF)
- {
- if (c == 0)
- c = long_options[longind].val;
- switch (c)
- {
- case 'n':
- if (*optarg == '+')
- {
- mode |= START;
- ++optarg;
- }
- number = atou (optarg);
- if (number == -1)
- error (1, 0, "invalid number `%s'", optarg);
- break;
- case 'l':
- mode &= ~(CHARS | BLOCKS);
- break;
- case 'b':
- mode |= BLOCKS;
- mode &= ~CHARS;
- break;
- case 'c':
- mode |= CHARS;
- mode &= ~BLOCKS;
- break;
- case 'f':
- #ifndef MSDOS
- mode |= FOREVER;
- #endif /* not MSDOS */
- break;
- case 'q':
- header_mode = never;
- break;
- case 'v':
- header_mode = always;
- break;
- default:
- usage ();
- }
- }
-
- if (number == -1)
- number = DEFAULT_NUMBER;
-
- /* To start printing with item `number' from the start of the file, skip
- `number' - 1 items. `tail +0' is actually meaningless, but for Unix
- compatibility it's treated the same as `tail +1'. */
- if (mode & START)
- {
- if (number)
- --number;
- }
-
- if (mode & BLOCKS)
- number *= BLOCKSIZE;
-
- if (optind < argc - 1 && (mode & FOREVER))
- error (1, 0, "cannot follow the ends of multiple files");
-
- if (header_mode == always
- || header_mode == multiple_files && optind < argc - 1)
- mode |= HEADERS;
-
- if (optind == argc)
- errors |= tail_file ("-", mode, number);
-
- for (; optind < argc; ++optind)
- errors |= tail_file (argv[optind], mode, number);
-
- exit (errors);
- }
-
- /* Display the last `number' units of file `filename', controlled by
- the flags in `mode'. "-" for `filename' means the standard input.
- Return 0 if successful, 1 if an error occurred. */
-
- int
- tail_file (filename, mode, number)
- char *filename;
- int mode;
- long number;
- {
- int fd;
-
- #ifdef MSDOS
- strlwr (filename);
- #endif /* MSDOS */
-
- if (!strcmp (filename, "-"))
- {
- filename = "standard input";
- if (mode & HEADERS)
- write_header (filename);
- return tail (filename, 0, mode, number);
- }
- else
- {
- fd = open (filename, O_RDONLY);
- if (fd == -1)
- {
- error (0, errno, "%s", filename);
- return 1;
- }
- else
- {
- int errors;
-
- if (mode & HEADERS)
- write_header (filename);
- errors = tail (filename, fd, mode, number);
- close (fd);
- return errors;
- }
- }
- }
-
- void
- write_header (filename)
- char *filename;
- {
- static int first_file = 1;
-
- if (first_file)
- {
- xwrite (1, "==> ", 4);
- first_file = 0;
- }
- else
- xwrite (1, "\n==> ", 5);
- xwrite (1, filename, strlen (filename));
- xwrite (1, " <==\n", 5);
- }
-
- /* Display the last `number' units of file `filename', open for reading
- in `fd', controlled by `mode'.
- Return 0 if successful, 1 if an error occurred. */
-
- int
- tail (filename, fd, mode, number)
- char *filename;
- int fd;
- int mode;
- long number;
- {
- if (mode & (CHARS | BLOCKS))
- return tail_chars (filename, fd, mode, number);
- else
- return tail_lines (filename, fd, mode, number);
- }
-
- /* Display the last part of file `filename', open for reading in`fd',
- using `number' characters, controlled by `mode'.
- Return 0 if successful, 1 if an error occurred. */
-
- int
- tail_chars (filename, fd, mode, number)
- char *filename;
- int fd;
- int mode;
- long number;
- {
- long length;
-
- if (mode & START)
- {
- if (lseek (fd, number, L_SET) < 0)
- {
- /* Reading from a pipe. */
- mode &= ~FOREVER;
- if (start_chars (filename, fd, number))
- return 1;
- }
- dump_remainder (filename, fd, mode);
- }
- else
- {
- length = lseek (fd, 0L, L_XTND);
- if (length >= 0)
- {
- if (length <= number)
- /* The file is shorter than we want, or just the right size, so
- print the whole file. */
- lseek (fd, 0L, L_SET);
- else
- /* The file is longer than we want, so go back. */
- lseek (fd, -number, L_XTND);
- dump_remainder (filename, fd, mode);
- }
- else
- return pipe_chars (filename, fd, number);
- }
- return 0;
- }
-
- /* Display the last part of file `filename', open for reading on `fd',
- using `number' lines, controlled by `mode'.
- Return 0 if successful, 1 if an error occurred. */
-
- int
- tail_lines (filename, fd, mode, number)
- char *filename;
- int fd;
- int mode;
- long number;
- {
- long length;
-
- if (mode & START)
- {
- if (lseek (fd, 0L, L_SET) < 0)
- mode &= ~FOREVER;
- if (start_lines (filename, fd, number))
- return 1;
- dump_remainder (filename, fd, mode);
- }
- else
- {
- length = lseek (fd, 0L, L_XTND);
- if (length >= 0)
- {
- if (length != 0 && file_lines (filename, fd, number, length))
- return 1;
- dump_remainder (filename, fd, mode);
- }
- else
- return pipe_lines (filename, fd, number);
- }
- return 0;
- }
-
- /* Print the last `number' lines from the end of file `fd'.
- Go backward through the file, reading `BUFSIZE' bytes at a time (except
- probably the first), until we hit the start of the file or have
- read `number' newlines.
- `pos' starts out as the length of the file (the offset of the last
- byte of the file + 1).
- Return 0 if successful, 1 if an error occurred. */
-
- int
- file_lines (filename, fd, number, pos)
- char *filename;
- int fd;
- long number;
- long pos;
- {
- char buffer[BUFSIZE];
- int chars_read;
- int i; /* Index into `buffer' for scanning. */
-
- if (number == 0)
- return 0;
-
- /* Set `chars_read' to the size of the last, probably partial, buffer;
- 0 < `chars_read' <= `BUFSIZE'. */
- #ifdef MSDOS /* shut up the compiler */
- chars_read = (int) (pos % (long) BUFSIZE);
- #else
- chars_read = pos % BUFSIZE;
- #endif /* MSDOS */
- if (chars_read == 0)
- chars_read = BUFSIZE;
- /* Make `pos' a multiple of `BUFSIZE' (0 if the file is short), so that all
- reads will be on block boundaries, which might increase efficiency. */
- pos -= chars_read;
- lseek (fd, pos, L_SET);
- chars_read = read (fd, buffer, chars_read);
- if (chars_read == -1)
- {
- error (0, errno, "%s", filename);
- return 1;
- }
-
- /* Count the incomplete line on files that don't end with a newline. */
- if (chars_read && buffer[chars_read - 1] != '\n')
- --number;
-
- do
- {
- /* Scan backward, counting the newlines in this bufferfull. */
- for (i = chars_read - 1; i >= 0; i--)
- {
- /* Have we counted the requested number of newlines yet? */
- if (buffer[i] == '\n' && number-- == 0)
- {
- /* If this newline wasn't the last character in the buffer,
- print the text after it. */
- if (i != chars_read - 1)
- xwrite (1, &buffer[i + 1], chars_read - (i + 1));
- return 0;
- }
- }
- /* Not enough newlines in that bufferfull. */
- if (pos == 0)
- {
- /* Not enough lines in the file; print the entire file. */
- lseek (fd, 0L, L_SET);
- return 0;
- }
- pos -= BUFSIZE;
- lseek (fd, pos, L_SET);
- }
- while ((chars_read = read (fd, buffer, BUFSIZE)) > 0);
- if (chars_read == -1)
- {
- error (0, errno, "%s", filename);
- return 1;
- }
- return 0;
- }
-
- /* Print the last `number' lines from the end of the standard input,
- open for reading as pipe `fd'.
- Buffer the text as a linked list of LBUFFERs, adding them as needed.
- Return 0 if successful, 1 if an error occured. */
-
- int
- pipe_lines (filename, fd, number)
- char *filename;
- int fd;
- long number;
- {
- struct linebuffer
- {
- int nchars, nlines;
- char buffer[BUFSIZE];
- struct linebuffer *next;
- };
- typedef struct linebuffer LBUFFER;
- LBUFFER *first, *last, *tmp;
- int i; /* Index into buffers. */
- long total_lines = 0; /* Total number of newlines in all buffers. */
- int errors = 0;
-
- first = last = (LBUFFER *) xmalloc (sizeof (LBUFFER));
- first->nchars = first->nlines = 0;
- tmp = (LBUFFER *) xmalloc (sizeof (LBUFFER));
-
- /* Input is always read into a fresh buffer. */
- while ((tmp->nchars = read (fd, tmp->buffer, BUFSIZE)) > 0)
- {
- tmp->nlines = 0;
- tmp->next = NULL;
-
- /* Count the number of newlines just read. */
- for (i = 0; i < tmp->nchars; i++)
- if (tmp->buffer[i] == '\n')
- ++tmp->nlines;
- total_lines += tmp->nlines;
-
- /* If there is enough room in the last buffer read, just append the new
- one to it. This is because when reading from a pipe, `nchars' can
- often be very small. */
- if (tmp->nchars + last->nchars < BUFSIZE)
- {
- bcopy (tmp->buffer, &last->buffer[last->nchars], tmp->nchars);
- last->nchars += tmp->nchars;
- last->nlines += tmp->nlines;
- }
- else
- {
- /* If there's not enough room, link the new buffer onto the end of
- the list, then either free up the oldest buffer for the next
- read if that would leave enough lines, or else malloc a new one.
- Some compaction mechanism is possible but probably not
- worthwhile. */
- last = last->next = tmp;
- if (total_lines - first->nlines > number)
- {
- tmp = first;
- total_lines -= first->nlines;
- first = first->next;
- }
- else
- tmp = (LBUFFER *) xmalloc (sizeof (LBUFFER));
- }
- }
- if (tmp->nchars == -1)
- {
- error (0, errno, "%s", filename);
- errors = 1;
- free ((char *) tmp);
- goto free_lbuffers;
- }
-
- free ((char *) tmp);
-
- /* This prevents a core dump when the pipe contains no newlines. */
- if (number == 0)
- goto free_lbuffers;
-
- /* Count the incomplete line on files that don't end with a newline. */
- if (last->buffer[last->nchars - 1] != '\n')
- {
- ++last->nlines;
- ++total_lines;
- }
-
- /* Run through the list, printing lines. First, skip over unneeded
- buffers. */
- for (tmp = first; total_lines - tmp->nlines > number; tmp = tmp->next)
- total_lines -= tmp->nlines;
-
- /* Find the correct beginning, then print the rest of the file. */
- if (total_lines > number)
- {
- char *cp;
-
- /* Skip `total_lines' - `number' newlines. We made sure that
- `total_lines' - `number' <= `tmp->nlines'. */
- cp = tmp->buffer;
- #ifdef MSDOS /* shut up the compiler */
- for (i = (int) (total_lines - number); i; --i)
- #else /* not MSDOS */
- for (i = total_lines - number; i; --i)
- #endif /* not MSDOS */
- while (*cp++ != '\n')
- /* Do nothing. */ ;
- i = cp - tmp->buffer;
- }
- else
- i = 0;
- xwrite (1, &tmp->buffer[i], tmp->nchars - i);
-
- for (tmp = tmp->next; tmp; tmp = tmp->next)
- xwrite (1, tmp->buffer, tmp->nchars);
-
- free_lbuffers:
- while (first)
- {
- tmp = first->next;
- free ((char *) first);
- first = tmp;
- }
- return errors;
- }
-
- /* Print the last `number' characters from the end of pipe `fd'.
- This is a stripped down version of pipe_lines.
- Return 0 if successful, 1 if an error occurred. */
-
- int
- pipe_chars (filename, fd, number)
- char *filename;
- int fd;
- long number;
- {
- struct charbuffer
- {
- int nchars;
- char buffer[BUFSIZE];
- struct charbuffer *next;
- };
- typedef struct charbuffer CBUFFER;
- CBUFFER *first, *last, *tmp;
- int i; /* Index into buffers. */
- long total_chars = 0; /* Total characters in all buffers. */
- int errors = 0;
-
- first = last = (CBUFFER *) xmalloc (sizeof (CBUFFER));
- first->nchars = 0;
- tmp = (CBUFFER *) xmalloc (sizeof (CBUFFER));
-
- /* Input is always read into a fresh buffer. */
- while ((tmp->nchars = read (fd, tmp->buffer, BUFSIZE)) > 0)
- {
- tmp->next = NULL;
-
- total_chars += tmp->nchars;
- /* If there is enough room in the last buffer read, just append the new
- one to it. This is because when reading from a pipe, `nchars' can
- often be very small. */
- if (tmp->nchars + last->nchars < BUFSIZE)
- {
- bcopy (tmp->buffer, &last->buffer[last->nchars], tmp->nchars);
- last->nchars += tmp->nchars;
- }
- else
- {
- /* If there's not enough room, link the new buffer onto the end of
- the list, then either free up the oldest buffer for the next
- read if that would leave enough characters, or else malloc a new
- one. Some compaction mechanism is possible but probably not
- worthwhile. */
- last = last->next = tmp;
- if (total_chars - first->nchars > number)
- {
- tmp = first;
- total_chars -= first->nchars;
- first = first->next;
- }
- else
- {
- tmp = (CBUFFER *) xmalloc (sizeof (CBUFFER));
- }
- }
- }
- if (tmp->nchars == -1)
- {
- error (0, errno, "%s", filename);
- errors = 1;
- free ((char *) tmp);
- goto free_cbuffers;
- }
-
- free ((char *) tmp);
-
- /* Run through the list, printing characters. First, skip over unneeded
- buffers. */
- for (tmp = first; total_chars - tmp->nchars > number; tmp = tmp->next)
- total_chars -= tmp->nchars;
-
- /* Find the correct beginning, then print the rest of the file.
- We made sure that `total_chars' - `number' <= `tmp->nchars'. */
- if (total_chars > number)
- #ifdef MSDOS /* shut up the compiler */
- i = (int) (total_chars - number);
- #else /* not MSDOS */
- i = total_chars - number;
- #endif /* not MSDOS */
- else
- i = 0;
- xwrite (1, &tmp->buffer[i], tmp->nchars - i);
-
- for (tmp = tmp->next; tmp; tmp = tmp->next)
- xwrite (1, tmp->buffer, tmp->nchars);
-
- free_cbuffers:
- while (first)
- {
- tmp = first->next;
- free ((char *) first);
- first = tmp;
- }
- return errors;
- }
-
- /* Skip `number' characters from the start of pipe `fd', and print
- any extra characters that were read beyond that.
- Return 1 on error, 0 if ok. */
-
- int
- start_chars (filename, fd, number)
- char *filename;
- int fd;
- long number;
- {
- char buffer[BUFSIZE];
- int chars_read = 0;
-
- while (number > 0 && (chars_read = read (fd, buffer, BUFSIZE)) > 0)
- number -= chars_read;
- if (chars_read == -1)
- {
- error (0, errno, "%s", filename);
- return 1;
- }
- else if (number < 0)
- #ifdef MSDOS /* |number| < 64k ??? */
- xwrite (1, &buffer[chars_read + number], (unsigned int) (-number));
- #else /* not MSDOS */
- xwrite (1, &buffer[chars_read + number], -number);
- #endif /* not MSDOS */
- return 0;
- }
-
- /* Skip `number' lines at the start of file or pipe `fd', and print
- any extra characters that were read beyond that.
- Return 1 on error, 0 if ok. */
-
- int
- start_lines (filename, fd, number)
- char *filename;
- int fd;
- long number;
- {
- char buffer[BUFSIZE];
- int chars_read = 0;
- int chars_to_skip = 0;
-
- while (number && (chars_read = read (fd, buffer, BUFSIZE)) > 0)
- {
- chars_to_skip = 0;
- while (chars_to_skip < chars_read)
- if (buffer[chars_to_skip++] == '\n' && --number == 0)
- break;
- }
- if (chars_read == -1)
- {
- error (0, errno, "%s", filename);
- return 1;
- }
- else if (chars_to_skip < chars_read)
- xwrite (1, &buffer[chars_to_skip], chars_read - chars_to_skip);
- return 0;
- }
-
- /* Display file `filename' from the current position in `fd'
- to the end. If selected in `mode', keep reading from the
- end of the file until killed. */
-
- void
- dump_remainder (filename, fd, mode)
- char *filename;
- int fd;
- int mode;
- {
- char buffer[BUFSIZE];
- int chars_read;
-
- output:
- while ((chars_read = read (fd, buffer, BUFSIZE)) > 0)
- xwrite (1, buffer, chars_read);
- if (chars_read == -1)
- error (1, errno, "%s", filename);
- #ifndef MSDOS
- if (mode & FOREVER)
- {
- sleep (1);
- goto output;
- }
- #endif /* not MSDOS */
- }
-
- /* Write plus error check. */
-
- void
- xwrite (fd, buffer, count)
- int fd;
- int count;
- char *buffer;
- {
- fd = write (fd, buffer, count);
- if (fd != count)
- error (1, errno, "write error");
- }
-
- /* Allocate `size' bytes of memory dynamically, with error check. */
-
- char *
- xmalloc (size)
- int size;
- {
- char *p;
-
- p = malloc ((unsigned) size);
- if (p == NULL)
- error (1, 0, "virtual memory exhausted");
- return p;
- }
-
- /* Convert `str', a string of ASCII digits, into an unsigned integer.
- Return -1 if `str' does not represent a valid unsigned integer. */
-
- long
- atou (str)
- char *str;
- {
- unsigned long value;
-
- for (value = 0; ISDIGIT (*str); ++str)
- value = value * 10 + *str - '0';
- return *str ? -1L : value;
- }
-
- void
- usage ()
- {
- fprintf (stderr, "\
- Usage: %s [-n [+]#] [-lbcfqv] [+number [+]#] [+lines] [+blocks]\n\
- [+chars] [+follow] [+quiet] [+silent] [+verbose] [file...]\n\
- \n\
- %s [+/-#lbcfqv] [file...]\n", program_name, program_name);
- exit (1);
- }
-